macOS で Homebrew からインストールした bash を使う
インストール
code: bash install
brew install bash
シェルの一覧に Homebrew 版 bash を追加する
code: Homebrew 版 bash をshellとして追加
echo /usr/local/bin/bash | sudo tee -a /etc/shells
※ Apple Silicon の場合は /opt/homebrew/bin/bash に読み替える必要があるので注意
利用するシェルを Homebrew 版 bash に変更する
code: shell を変更
chsh -s /usr/local/bin/bash
~/.profile を用意する ( 必要に応じて )
code:~/.profile(bash)
# if running bash
# source .bashrc if it exists
. "$HOME/.bashrc"
fi
fi
# set PATH for private bin if it exists
PATH="$HOME/bin:$PATH"
fi
# homebrew
eval "$(/opt/homebrew/bin/brew shellenv)"